1 //==============================================================================
2 // file : SystemConfig.java
3 // project: East Networks News System
4 //
5 // last change: date: $Date: 2003/09/10 09:28:37 $
6 // by: $Author: bitiboy $
7 // revision: $Revision: 1.1 $
8 //------------------------------------------------------------------------------
9 // copyright: GNU GPL Software License (see class documentation)
10 //==============================================================================
11 package net.eastol.news.jibx.bean;
12
13
14 /*
15 * $Id: SystemConfig.java,v 1.1 2003/09/10 09:28:37 bitiboy Exp $
16 *
17 * Copyright 2003 Acai Software All Rights Reserved.
18 *
19 * This file SystemConfig.java is part of the East Networks News System.
20
21 * The East Networks News System is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2 of the License, or
24 * (at your option) any later version.
25
26 * East Networks News System is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
30
31 * You should have received a copy of the GNU General Public License
32 * along with the East Networks News System; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34
35 * http://www.justhis.com http://ejb.cn
36 * CONTACT: email = webmaster@justhis.com superaxis@sohu.com
37 */
38 /*
39 * TODO
40 * @author <a href="http://blog.ejb.cn">acai</a>
41 *
42 * @version $Revision: 1.1 $
43 */
44 public class SystemConfig {
45 //~ Instance fields --------------------------------------------------------
46
47 /*** TODO */
48 public String dateFormatter;
49
50 /*** TODO */
51 public String newsAdv;
52
53 /*** TODO */
54 public String pageSuffix;
55
56 /*** TODO */
57 public String remarkFilterWords;
58
59 /*** TODO */
60 public String rightPosition;
61
62 /*** TODO */
63 public String siteAdv;
64
65 /*** TODO */
66 public String siteCopyright;
67
68 /*** TODO */
69 public String siteEmail;
70
71 /*** TODO */
72 public String siteLogo;
73
74 /*** TODO */
75 public String siteName;
76
77 /*** TODO */
78 public String siteUrl;
79
80 /*** TODO */
81 public String smtpServer;
82
83 /*** TODO */
84 public String style;
85
86 /*** TODO */
87 public String uploadDir;
88
89 /*** TODO */
90 public String uploadFileExt;
91
92 /*** TODO */
93 public int isShowHits;
94
95 /*** TODO */
96 public int isShowNewPic;
97
98 /*** TODO */
99 public int pageSize;
100
101 /*** TODO */
102 public int showModel;
103
104 /*** TODO */
105 public int uploadFileSize;
106
107 //~ Methods ----------------------------------------------------------------
108
109 /***
110 * TODO
111 *
112 * @return TODO
113 */
114 public int getPageSize() {
115 return pageSize;
116 }
117
118 /***
119 * TODO
120 *
121 * @param pageSuffix TODO
122 */
123 public void setPageSuffix(String pageSuffix) {
124 this.pageSuffix = pageSuffix;
125 }
126
127 /***
128 * TODO
129 *
130 * @return TODO
131 */
132 public String getPageSuffix() {
133 return this.pageSuffix;
134 }
135 }
136
137
138 /*
139 * $Log: SystemConfig.java,v $
140 * Revision 1.1 2003/09/10 09:28:37 bitiboy
141 * *** empty log message ***
142 *
143 *
144 */
This page was automatically generated by Maven